setup.cfgのkeywordはcase insensitive
調べた経緯
setup.cfg(パッケージングしよう)のdescription-content-type(小文字)
setup.cfgにDescription-Content-Typeが指定できるようになったではDescription-Content-Type
case insensitiveの根拠
Distribution names are limited to those which match the following regex (run with re.IGNORECASE):
https://packaging.python.org/en/latest/specifications/core-metadata/#name
https://docs.python.org/ja/3/library/re.html#re.IGNORECASE
大文字・小文字を区別しないマッチングを行います;
[A-Z] のような正規表現は小文字にもマッチします。